home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 8 / FM Towns Free Software Collection 8.iso / t_os / gpen32k / source / lib / osrc / _getch.c next >
Encoding:
C/C++ Source or Header  |  1994-06-01  |  88 b   |  7 lines

  1. #include    <dos.h>
  2.  
  3. int _getch(void)
  4. {
  5.     return ( _bdos( 8, 0, 0 ) & 0x000000ff );
  6. }
  7.